博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
评论列表显示及排序,个人中心显示
阅读量:5065 次
发布时间:2019-06-12

本文共 2045 字,大约阅读时间需要 6 分钟。

  1. 显示所有评论
    {% for foo in ques.comments %}

      Comment[{

      { question.comments|length }}]

      {% for foo in question.comments %}
    • {
      { foo.author.username }}
      {
      { foo.creat_time }}

      {

      { foo.detail }}

    • {% endfor %}

     

  2. 所有评论排序
    uquestion = db.relationship('Question', backref=db.backref('comments', order_by=creat_time.desc))
    question = db.relationship('Question', backref=db.backref('comments',order_by=creat_time.desc))

     

  3. 显示评论条数
    {
    { ques.comments|length }}

    Comment[{

    { question.comments|length }}]

     

  4. 完成个人中心
{% extends 'base.html' %}{% block title %}Center{% endblock %}{% block head %}    
{% endblock %}{% block main %}

{
{ user.username }}



    Personal Information

  • Username:{

    { user.username }}

  • Id:{

    { user.id }}

  • Number of articles:{

    { user.question|length }}

{% endblock %}

 

1.个人中心的页面布局(html文件及相应的样式文件)

2.定义视图函数def usercenter(user_id):

3.向前端页面传递参数

4.页面显示相应数据

发布的全部问答

发布的全部评论

个人信息

5.各个页面链接到个人中心

转载于:https://www.cnblogs.com/1031353319qq/p/8034518.html

你可能感兴趣的文章
C++ p63作业 1
查看>>
第七课 Zookeeper配置管理,分布式锁案例,运维管理,运维管理系统
查看>>
数的划分(动态规划)
查看>>
.Net EntityFramework学习笔记
查看>>
挣值管理(EVT)
查看>>
20180711-Java Number类
查看>>
考试系统优化——准备工作
查看>>
Server Tomcat v7.0 Server at localhost was unable to start within 45 seconds
查看>>
Decker hello world
查看>>
crontab定时任务(待补充)
查看>>
转载:PostgreSQL学习手册(性能提升技巧)
查看>>
javascript学习笔记1
查看>>
LVM调整磁盘分区大小
查看>>
sql使用row_number()查询标记行号
查看>>
PowerDesigner安装教程(含下载+汉化+破解)
查看>>
hdu5236 Article
查看>>
源码 springmvc 请求加载过程
查看>>
linux-memcache安装及memcached memcache扩展
查看>>
python logging 日志使用
查看>>
Effective Java 74 Implement Serializable judiciously
查看>>